type github.com/andybalholm/brotli.blockEncoder

11 uses

	github.com/andybalholm/brotli (current package)
		brotli_bit_stream.go#L1102: type blockEncoder struct {
		brotli_bit_stream.go#L1118: func getBlockEncoder(histogram_length uint, num_block_types uint, block_types []byte, block_lengths []uint32, num_blocks uint) *blockEncoder {
		brotli_bit_stream.go#L1119: 	self, _ := blockEncoderPool.Get().(*blockEncoder)
		brotli_bit_stream.go#L1127: 		self = &blockEncoder{}
		brotli_bit_stream.go#L1145: func cleanupBlockEncoder(self *blockEncoder) {
		brotli_bit_stream.go#L1154: func buildAndStoreBlockSwitchEntropyCodes(self *blockEncoder, tree []huffmanTree, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1163: func storeSymbol(self *blockEncoder, symbol uint, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1187: func storeSymbolWithContext(self *blockEncoder, symbol uint, context uint, context_map []uint32, storage_ix *uint, storage []byte, context_bits uint) {
		brotli_bit_stream.go#L1206: func buildAndStoreEntropyCodesLiteral(self *blockEncoder, histograms []histogramLiteral, histograms_size uint, alphabet_size uint, tree []huffmanTree, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1227: func buildAndStoreEntropyCodesCommand(self *blockEncoder, histograms []histogramCommand, histograms_size uint, alphabet_size uint, tree []huffmanTree, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1248: func buildAndStoreEntropyCodesDistance(self *blockEncoder, histograms []histogramDistance, histograms_size uint, alphabet_size uint, tree []huffmanTree, storage_ix *uint, storage []byte) {